home *** CD-ROM | disk | FTP | other *** search
- abstract class PlayerShotIndex extends StgObjectIndex {
- protected PlayerShotAction psaAction;
- protected int nPower;
-
- public PlayerShotIndex(Position var1, SpriteAnimeData var2, Position var3, int var4, PlayerShotAction var5, int var6) {
- super(var1, var2, var3, var4);
- this.psaAction = var5;
- this.nPower = var6;
- }
-
- public void setPlayerShotAction(PlayerShotAction var1) {
- this.psaAction = var1;
- }
-
- public void setPower(int var1) {
- this.nPower = var1;
- }
-
- public PlayerShotAction getPlayerShipAction() {
- return this.psaAction;
- }
-
- public int getPower() {
- return this.nPower;
- }
-
- public abstract void action();
- }
-